home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / AppMaker 2.0b3 / Demo AppMaker 1.5 / Demo AppMaker™ / Demo AppMaker™.rsrc / TmpC_1009_Picture < prev    next >
Encoding:
Text File  |  1992-04-08  |  543 b   |  33 lines

  1. %case update%
  2.     GetWRect (%itemname%, &bounds);
  3.     DrawPictureID (%pictID%, bounds);
  4. %case itemNr%
  5.     %DefineItem%
  6. %case dialog field%
  7.     %if enabled%
  8.         Handle            %fieldname%;
  9.         %haveField%
  10.     %end if%
  11. %case init field%
  12.     %if enabled%
  13.         info->%fieldname% = nil;
  14.     %end if%
  15. %case auxiliaryProto%
  16.     %if enabled%
  17.         static void Do%itemname% (void);
  18.     %end if%
  19. %case auxiliary%
  20.     %if enabled%
  21.         /*----------*/
  22.         static void Do%itemname% ()
  23.         {
  24.         } /*Do%itemname%*/
  25.         
  26.     %end if%
  27. %case hit%
  28.     %if enabled%
  29.         case %itemname%:
  30.                 Do%itemname% ();
  31.             break;
  32.     %end if%
  33.